home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-03 / grow.zip / GROW.DOC < prev    next >
Text File  |  1990-03-05  |  2KB  |  34 lines

  1. GROW: A Program That "Learns"
  2.   By Jeff Levinsky
  3.   Modified by Jim Ward
  4.  
  5.   This program was taken from the January 1980, Volume 6, Number 1
  6.   issue of Creative Computing.  Grow is based upon the well-known
  7.   games of ADVENTURE and ANIMAL.  It was originally developed on 
  8.   the CHAOS II system which was a multi-user, multi-tasking 
  9.   8080-based system developed at Clairemont High School in San Diego,
  10.   California.  For further information about this system see the
  11.   article, "CHAOS: An Interactive Timeshared Operating System for the
  12.   8080," by Jeff Levinsky in Dr. Dobb's Journal, January 1979, pgs 6-13.
  13.  
  14.   GROW does not possess any artifical intelligence, but instead uses
  15.   simple pattern matching.  The following are the primitive actions:
  16.   (Newly added features are followed by a ~.)
  17.  
  18.    COMMAND     EXAMPLE       DESCRIPTION
  19.    -------     -------       -----------
  20.       +          +5          Adds 5 points to the user's score.
  21.       -          -5          Subtracts 5 points from the user's score.
  22.       P        PHello        Prints out the text 'Hello'.
  23.       G        GCELLAR       Goes to another node called 'CELLAR'.
  24.       X          X           Allows the user to extend the current node.
  25.       Q          Q           Causes GROW to print the score and quit.
  26.       *          *           Print user's score. ~
  27.       C          C           Clears the screen. ~
  28.  
  29.   GROW may be an old program but it still has some very interesting
  30.   ideas about user expandable programs.  Enjoy.
  31.  
  32.   GROW was compiled with PowerBASIC v2.0.
  33.  
  34.